Move vtd and amd iommu code to arch-generic location.
authorKeir Fraser <keir.fraser@citrix.com>
Thu, 21 Feb 2008 15:06:37 +0000 (15:06 +0000)
committerKeir Fraser <keir.fraser@citrix.com>
Thu, 21 Feb 2008 15:06:37 +0000 (15:06 +0000)
commit7147da6f1198137a6605c330dac52301f4f81b08
tree178122c08b73eef54bbffeb77aad3005ee1e77c4
parent2bd0e7b9652a975f6dc89faf4eba904cf27f4d3b
Move vtd and amd iommu code to arch-generic location.
Signed-off-by: Weidong Han <weidong.han@intel.com>
43 files changed:
xen/arch/x86/Rules.mk
xen/arch/x86/hvm/svm/Makefile
xen/arch/x86/hvm/svm/amd_iommu/Makefile [deleted file]
xen/arch/x86/hvm/svm/amd_iommu/amd-iommu-detect.c [deleted file]
xen/arch/x86/hvm/svm/amd_iommu/amd-iommu-init.c [deleted file]
xen/arch/x86/hvm/svm/amd_iommu/amd-iommu-map.c [deleted file]
xen/arch/x86/hvm/svm/amd_iommu/pci-amd-iommu.c [deleted file]
xen/arch/x86/hvm/svm/amd_iommu/pci-direct.h [deleted file]
xen/arch/x86/hvm/svm/amd_iommu/pci_regs.h [deleted file]
xen/arch/x86/hvm/vmx/Makefile
xen/arch/x86/hvm/vmx/vtd/Makefile [deleted file]
xen/arch/x86/hvm/vmx/vtd/dmar.c [deleted file]
xen/arch/x86/hvm/vmx/vtd/dmar.h [deleted file]
xen/arch/x86/hvm/vmx/vtd/extern.h [deleted file]
xen/arch/x86/hvm/vmx/vtd/intel-iommu.c [deleted file]
xen/arch/x86/hvm/vmx/vtd/intremap.c [deleted file]
xen/arch/x86/hvm/vmx/vtd/io.c [deleted file]
xen/arch/x86/hvm/vmx/vtd/msi.h [deleted file]
xen/arch/x86/hvm/vmx/vtd/pci-direct.h [deleted file]
xen/arch/x86/hvm/vmx/vtd/pci_regs.h [deleted file]
xen/arch/x86/hvm/vmx/vtd/qinval.c [deleted file]
xen/arch/x86/hvm/vmx/vtd/utils.c [deleted file]
xen/arch/x86/hvm/vmx/vtd/vtd.h [deleted file]
xen/drivers/Makefile
xen/drivers/passthrough/Makefile [new file with mode: 0644]
xen/drivers/passthrough/amd/Makefile [new file with mode: 0644]
xen/drivers/passthrough/amd/iommu_detect.c [new file with mode: 0644]
xen/drivers/passthrough/amd/iommu_init.c [new file with mode: 0644]
xen/drivers/passthrough/amd/iommu_map.c [new file with mode: 0644]
xen/drivers/passthrough/amd/pci_amd_iommu.c [new file with mode: 0644]
xen/drivers/passthrough/pci-direct.h [new file with mode: 0644]
xen/drivers/passthrough/pci_regs.h [new file with mode: 0644]
xen/drivers/passthrough/vtd/Makefile [new file with mode: 0644]
xen/drivers/passthrough/vtd/dmar.c [new file with mode: 0644]
xen/drivers/passthrough/vtd/dmar.h [new file with mode: 0644]
xen/drivers/passthrough/vtd/extern.h [new file with mode: 0644]
xen/drivers/passthrough/vtd/intremap.c [new file with mode: 0644]
xen/drivers/passthrough/vtd/io.c [new file with mode: 0644]
xen/drivers/passthrough/vtd/iommu.c [new file with mode: 0644]
xen/drivers/passthrough/vtd/msi.h [new file with mode: 0644]
xen/drivers/passthrough/vtd/qinval.c [new file with mode: 0644]
xen/drivers/passthrough/vtd/utils.c [new file with mode: 0644]
xen/drivers/passthrough/vtd/vtd.h [new file with mode: 0644]